home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_12_05
/
heintze
/
boolean.h
< prev
Wrap
C/C++ Source or Header
|
1994-04-06
|
123b
|
7 lines
#ifndef __BOOLEAN_H
#define __BOOLEAN_H
typedef int Boolean;
const Boolean TRUE = 1;
const Boolean FALSE = 0;
#endif